[USER (data scientist)]: Sweet! Last thing, can you help me turn the result into a list of tuples? Please generate the code with the output in list type.
My template of code snippet is:

---BEGIN CODE TEMPLATE---

import pandas as pd   
import pickle
from decision_company import read_csv_file, fetch_column, calculate_quantile, create_condition, logical_and, filter_by_condition, convert_to_tuples

# Load the dataset  
credit_customers = read_csv_file("credit_customers.csv")  
  
# YOUR SOLUTION BEGIN:
<code1>
[GENERATE YOUR CODE]     
</code1>
# YOUR SOLUTION END

print(f"high_credit_long_duration: {result_list}")  

# save data
pickle.dump(result_list, open("./pred_result/result_list.pkl","wb"))

---END CODE TEMPLATE---

[YOU (AI assistant)]: Of course! Here's the code to convert the result into a list of tuples:

# MY SOLUTION BEGIN:
